Add optional gateway screen actions#37
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 2091a6c826
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| width=$(printf "%s\n" "$geometry" | awk -F= "/^WIDTH=/{print \\$2}") | ||
| height=$(printf "%s\n" "$geometry" | awk -F= "/^HEIGHT=/{print \\$2}") |
There was a problem hiding this comment.
Fix awk field escapes in geometry parsing
When screen_action is anything other than capture-only, these awk programs use \$2 inside double quotes, which causes Bash (with set -u) to expand shell positional parameter $2 instead of passing awk field $2; in bash -lc here $2 is unset, so the step exits before any click/screenshot action runs. This makes all new interactive actions fail consistently.
Useful? React with 👍 / 👎.
Summary
Tests